a3c431f4057341b825506e86024e279fdbdc0481,src/main/java/com/github/alexfalappa/nbspringboot/actions/GlobalActionContextProxy.java,RegistryPropertyChangeListener,propertyChange,#PropertyChangeEvent#,135
Before Change
lastProject = project;
// Add this project to the proxy if it's not in the global lookup
if (!resultProjects.allInstances().contains(lastProject)) {
logger.finer(String.format("propertyChange: Found project [%s] that owns current node.",
ProjectUtils.getInformation(lastProject).getDisplayName()));
updateProjectLookup(lastProject);
}
}
After Change
lastProject = project;
// Add this project to the proxy if it's not in the global lookup
if (!resultProjects.allInstances().contains(lastProject)) {
logger.log(FINER, "propertyChange: Found project [{0}] that owns current node.",
ProjectUtils.getInformation(lastProject).getDisplayName());
updateProjectLookup(lastProject);
}
}